翻訳と辞書
Words near each other
・ Parbatya Chattagram Upajatiya Kalyan Samiti
・ Parbayse
・ Parbbatipur
・ Parberry Block East
・ Parberya
・ Parbhani
・ Parbhani (Lok Sabha constituency)
・ Parbhani (Vidhan Sabha constituency)
・ Parbhani district
・ Parbhani Municipal Corporation
・ Parbhu Dayal Yadav
・ Parbhu Nana
・ Parbhubhai Vasava
・ Parbing
・ Parbo Bier
Parboiled (Java)
・ Parboiled rice
・ Parboiling
・ Parbold
・ Parbold railway station
・ Parbona Ami Chartey Tokey
・ Parborlasia corrugatus
・ Parbroath Castle
・ Parbuckle salvage
・ Parbėg laivelis
・ PARC
・ Parc (AMT)
・ Parc (Charleroi Metro)
・ PARC (company)
・ Parc (film)


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Parboiled (Java) : ウィキペディア英語版
Parboiled (Java)

parboiled is an open-source Java library released under an Apache License. It provides support for defining PEG parsers directly in Java source code.
parboiled is commonly used as an alternative for regular expressions or parser generators (like ANTLR or JavaCC), especially for smaller and medium-size applications.
Apart from providing the constructs for grammar definition parboiled implements a complete recursive descent parser with support for abstract syntax tree construction, parse error reporting and parse error recovery.
==Example==

Since parsing with parboiled does not require a separate lexing phase and there is no special syntax to learn for grammar definition parboiled makes it comparatively easy to build custom parsers quickly.
Consider this the following classic “calculator” example, with these rules in a simple pseudo notation
:''Expression'' ← ''Term'' ((‘+’ / ‘-’) ''Term'')
*
:''Term'' ← ''Factor'' (('
*' / '/') ''Factor'')
*
:''Factor'' ← ''Number'' / '(' ''Expression'' ')'
:''Number'' ← ()+
With parboiled this rule description can be translated directly into the following Java code:

import org.parboiled.BaseParser;
public class CalculatorParser extends BaseParser
public Rule Factor()
public Rule Number()
}

The class defines the parser rules for the language (yet without any actions), which could be used to parse actual input with code such as this:

String input = "1+2";
CalculatorParser parser = Parboiled.createParser(CalculatorParser.class);
ParsingResult result = ReportingParseRunner.run(parser.expression(), input);
String parseTreePrintOut = ParseTreeUtils.printNodeTree(result);
System.out.println(parseTreePrintOut);


抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Parboiled (Java)」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.